home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / kudzu / isapnp.h < prev    next >
C/C++ Source or Header  |  2005-12-04  |  2KB  |  54 lines

  1. /* Copyright 1999-2003 Red Hat, Inc.
  2.  *
  3.  * This software may be freely redistributed under the terms of the GNU
  4.  * public license.
  5.  *
  6.  * You should have received a copy of the GNU General Public License
  7.  * along with this program; if not, write to the Free Software
  8.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  9.  *
  10.  */
  11.  
  12. #ifndef _KUDZU_ISAPNP_H_
  13. #define _KUDZU_ISAPNP_H_
  14.  
  15. #include "device.h"
  16.  
  17. struct isapnpDevice {
  18.     /* common fields */
  19.     struct device *next;    /* next device in list */
  20.     int index;
  21.     enum deviceClass type;    /* type */
  22.     enum deviceBus bus;        /* bus it's attached to */
  23.     char * device;        /* device file associated with it */
  24.     char * driver;        /* driver to load, if any */
  25.     char * desc;        /* a description */
  26.     int detached;
  27.         void * classprivate;
  28.     /* isapnp-specific fields */
  29.     struct isapnpDevice  *(*newDevice) (struct isapnpDevice *dev);
  30.     void (*freeDevice) (struct isapnpDevice *dev);
  31.     void (*writeDevice) (FILE *file, struct isapnpDevice *dev);
  32.     int (*compareDevice) (struct isapnpDevice *dev1, struct isapnpDevice *dev2);
  33.     char * deviceId;
  34.     char * pdeviceId;
  35.     char * compat;
  36.     int native;
  37.     int active;
  38.     int cardnum;
  39.     int logdev;
  40.     int * io;
  41.     int * irq;
  42.     int * dma;
  43.     int * mem;
  44. };
  45.  
  46. struct isapnpDevice *isapnpNewDevice(struct isapnpDevice *dev);
  47. struct device *isapnpProbe(enum deviceClass probeClass, int probeFlags,
  48.             struct device *devlist);
  49. int *isapnpReadResources(char *line, int base);
  50. int isapnpActivate(struct isapnpDevice **dev);
  51. int isapnpReadDrivers(char *filename);
  52. void isapnpFreeDrivers(void);
  53. #endif
  54.